DoubleIterator

abstract class DoubleIterator : Iterator<Double>

An iterator over a sequence of values of type Double.

Constructors

DoubleIterator
Link copied to clipboard
fun DoubleIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean
next
Link copied to clipboard
operator override fun next(): Double
nextDouble
Link copied to clipboard
abstract fun nextDouble(): Double

Returns the next value in the sequence without boxing.